Skip to content
View amandaroos's full-sized avatar
Block or Report

Block or report amandaroos

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. Scorekeeper Scorekeeper Public

    Uses a SQLite database. Simple, multiplayer scorekeeper.

    Java 5 2

  2. RandomNumberGenerator RandomNumberGenerator Public

    Uses SharedPreferences. Generates a number within a range specified by the user

    Java 3 1

  3. VolumeButtonCounterFree VolumeButtonCounterFree Public

    The simple, free version of a volume button counter

    Java 4

  4. LatLong LatLong Public

    Uses Kotlin and google play services to show lat and long on Android

    Kotlin 3

  5. Quicksort 1 Quicksort 1
    1
    """Implement quick sort in Python.
    2
    Input a list.
    3
    Output a sorted list."""
    4
    def quicksort(array):
    5
        low = 0
  6. RecursiveFibonacciRabbits.py RecursiveFibonacciRabbits.py
    1
    #n is generations, m is pairs of rabbits born per litter
    2
    #b is pairs of baby bunnies, B is pairs of adult bunnies
    3
    
                  
    4
    def get_rabbits(n,m):
    5
       if n == 1: