Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: possibilitiesInTest/Java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: duke_java_oop_specialization
Choose a base ref
...
head repository: possibilitiesInTest/Java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 20 commits
  • 173 files changed
  • 2 contributors

Commits on Aug 13, 2020

  1. nested for|if loops: 11 - 15

    Gourav B committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    0681740 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2023

  1. Configuration menu
    Copy the full SHA
    d209a00 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b9c3faa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b3f15e9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    96617f5 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. Configuration menu
    Copy the full SHA
    3099e37 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    691d874 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cd7bc51 View commit details
    Browse the repository at this point in the history
  4. merge fix

    possibilitiesInTest committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    8c6bf91 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e16a21b View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    f010f91 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Configuration menu
    Copy the full SHA
    3f045d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    031ce85 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    3eb6f3e View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2024

  1. repeatChar, starKill, wordsCount, matchingChar, longestStreak solutions:

         matchingChar:
    
              -set count
              -iterate through a
              -set str1, str2 to a[i], b[i]
    
              -check if str1,str2 are empty
              -check if charAt(0) are equal
              -increment, return count
    
         longestStreak
    
              -set max
    
              -iterate i
                   -set count
                   -iterate j
                        -check if charAt(i) equals charAt(j)
                              -increment count
                        -else break
                   -if count greater than max: update max
    
              -return max
    possibilitiesInTest committed Mar 2, 2024
    Configuration menu
    Copy the full SHA
    1319890 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2024

  1. yoYo solution:

         -if str length less than two: return zero
    
         -if substring of 0,2 equals yo:
              -return 1 plus yoYo of substring at 1
    
         -else
              -return yoYo at substring 1
    possibilitiesInTest committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    4ae773e View commit details
    Browse the repository at this point in the history
  2. endoo solution:

         -if str.equals empty: return str
    
         -if str.charAt zero equals o
              -return endoo of substring at 1 plus o
    
         -else
              -return charAt zero plus endoo of substring at one
    possibilitiesInTest committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    3c2effc View commit details
    Browse the repository at this point in the history
  3. hyphenSplit solution:

         if str len less than two: return str
    
         -if charAt zero equals charAt one
              -return charAt zero - hyphenSplit substring at one
    
         -return charAt zero plus hyphSplit substring at one
    possibilitiesInTest committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    77a0823 View commit details
    Browse the repository at this point in the history
  4. insideBrackets solution:

         -if charAt zero does not equal open brace
              -return iB at substring 1
    
         -if charAt length minus one does not equal close brace
              -return iB substring zero to len minus one
    
         -return str
    possibilitiesInTest committed Mar 3, 2024
    Configuration menu
    Copy the full SHA
    77b38c3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    62363f1 View commit details
    Browse the repository at this point in the history
Loading