Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions exercises/practice/hexadecimal/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Instructions

a hexadecimal number is a number with base 16.It uses 16 symbols: 1,2,3,4,5,6,7,8,9,A,B,C,D,E,F.
where A=11, B=12, C=13, D=14, E=15, F=16

Convert a hexadecimal number, represented as a string (e.g. "10af8c"), to its decimal equivalent using first principles (i.e. no, you may not use built-in or external libraries to accomplish the conversion).

On the web we use hexadecimal to represent colors, e.g. green: 008000, teal: 008080, navy: 000080).
Expand Down