Skip to content
View sinanduman's full-sized avatar

Block or report sinanduman

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 Loading

  1. Lexical ordering Roman Numbers in Ki... Lexical ordering Roman Numbers in King Titles
    1
    package algo
    2
    
                  
    3
    class Roman(kings: Array[String]) {
    4
    
                  
    5
      val basicLetters = Map(
  2. Code will find the anagrams in a giv... Code will find the anagrams in a given String array.
    1
    package teach;
    2
    
                  
    3
    import java.util.Arrays;
    4
    
                  
    5
    public class FindAnagram {
  3. Pascal Triangle Pascal Triangle
    1
    import java.util.ArrayList;
    2
    import java.util.Arrays;
    3
    import java.util.List;
    4
    
                  
    5
    public class Pascal {
  4. Fibonacci numbers with tail recursio... Fibonacci numbers with tail recursion optimization
    1
    (defn fib
    2
    	([n]
    3
    		(fib n 0 1 0) )
    4
    	([n start prev acc]
    5
    		(if (= n start)