Skip to content

nutchy/card-at

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Function cardAt ♣♦♥♠

  • จงเขียน function cardAt ที่รับค่า n และคืนค่าเป็นเลขของไพ่ในสำรับลำดับที่ n
    โดยเรียงตามดอกไพ่ (C, D, H, S) และเลขไพ่ (2, 3, 4, 5, 6, 7, 8, 9, 0, J, Q, K, A) ตามลำดับ
    ตัวอย่างเช่น cardAt(0) = 2C, cardAt(1) = 3C, cardAt(34) = 0H และ cardAt(35) = JH เป็นต้น
    โดยเขียนคำตอบมาโดยใช้ภาษาใดก็ได้ หรือเป็น Psuedocode ก็ได้เช่นกัน

Expected result

2 3 4 5 6 7 8 9 0 J Q K A
C 0 1 2 3 4 5 6 7 8 9 10 11 12
D 13 14 15 16 17 18 19 20 21 22 23 24 25
H 26 27 28 29 30 31 32 33 34 35 36 37 38
S 39 40 41 42 43 44 45 46 47 48 49 50 51

How to run

$ go test -v

Test result

Screen Shot 2562-09-04 at 22 02 10

About

YWC17 - Programming Question

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages