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

Block or report suman-r

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

Popular repositories

  1. inner-reduce-pattern inner-reduce-pattern Public

    inner reduction pattern for the giveninput

    Python

  2. longest-substring-having-first-letter-capital longest-substring-having-first-letter-capital Public

    Python

  3. Number-of-Coins---Denominations Number-of-Coins---Denominations Public

    ## number of coins denomination ## n=int(input()) c=0 if n>1000:c+=n//1000; n%=1000 if n>500:c+=n//500; n%=500 if n>100:c+=n//100; n%=100 if n>50:c+=n//50; n%=50 if n>20:c+=n//20; n%=20 if n>10:c+=…

  4. remove-element-more-than-two-occurance remove-element-more-than-two-occurance Public

  5. sample sample Public

    sample code

    Python

  6. androidpatternlock androidpatternlock Public

    Forked from sch3m4/androidpatternlock

    A little Python tool to crack the Pattern Lock on Android devices

    Python