"837. New 21 Game" medium, no working solution yet

This commit is contained in:
2022-06-23 20:48:52 +03:00
parent b7c8081053
commit abcc78ac0f
2 changed files with 333 additions and 0 deletions

12
837-new-21-game_test.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestNew21Game(t *testing.T) {
// assert.Equal(t, 1.0, New21Game(10, 1, 10))
assert.Equal(t, 0.6, New21Game(6, 1, 10))
assert.Equal(t, 0.73278, New21Game(21, 17, 10))
}