Skip to content
View kingso's full-sized avatar
😀
😀

Block or report kingso

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. scrabble_score.go scrabble_score.go
    1
    package main
    2
    
    
    3
    import (
    4
    	"fmt"
    5
    	"strings"
  2. Excel.Lambda Excel.Lambda
    1
    IFBLANK = LAMBDA(value, value_if_blank,
    2
        IF(
    3
            ISBLANK(value),
    4
            value_if_blank,
    5
            value
  3. FizzBuzz in Rust FizzBuzz in Rust
    1
    #[derive(Debug)]
    2
    enum Words {
    3
        Fizz = 3,
    4
        Buzz = 5,
    5
    }
  4. Hangman Hangman Public

    Python