Skip to content
View guneyizol's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report guneyizol

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. python_chat python_chat Public

    Python

  2. Generic Set ADT Generic Set ADT
    1
    package main
    2
    
                  
    3
    import "fmt"
    4
    
                  
    5
    func main() {
  3. datetime datetime Public

    date, time, and timezone concepts

  4. Iterative postorder traversal of a b... Iterative postorder traversal of a binary tree
    1
    /**
    2
     * Definition for a binary tree node.
    3
     * public class TreeNode {
    4
     *     int val;
    5
     *     TreeNode left;
  5. Iterative Tower of Hanoi implementat... Iterative Tower of Hanoi implementation in Java
    1
    public class Hanoi {
    2
        public long toh(int N, int from, int to, int aux) {
    3
            LinkedList<Integer> stack = new LinkedList();
    4
            LinkedList<Integer> froms = new LinkedList();
    5
            LinkedList<Integer> tos = new LinkedList();
  6. Generating lexicographically ordered... Generating lexicographically ordered permutations
    1
    public class Permutation {
    2
        private char[] chars;
    3
        
    4
        public ArrayList<String> permutation(String s) {
    5
            chars = s.toCharArray();