❔ reduce these magic number code smells

Hey there, i have the following code which looks quite identical. How can i clean the magic numbers to remove the code smells?
13 Replies
boiled goose
boiled goose13mo ago
is the question like "what name should i give them?"
electronic heartbreak.
No, what I try to ask is; Since these are all the same over the 3 functions I want to implement something so that these magic numbers can be removed or are like defined once.
boiled goose
boiled goose13mo ago
it all depends on your needs they could be constants in the class they could be methods from a service if they need to be calculated in some way they could be static properties of a class if they need to be used in multiple places
electronic heartbreak.
I would need to make 4 additional constants then, but still, needing to put them on all 3 functions feels still a bit "messy"
cap5lut
cap5lut13mo ago
that looks a lot like u want a factory method to create the clusters
electronic heartbreak.
this code is already in 1 builder tho,
cap5lut
cap5lut13mo ago
well, make it a private helper method in the builder or so another way would be to define something like a rectangle or region struct and store these somewhere / make factory methods for each and then use these to pass to the data to the different GetSub... methods
nukleer bomb
nukleer bomb13mo ago
const int Width = 6; then
6 -> Width
3 -> Width / 2
2 -> 2
6 -> Width
3 -> Width / 2
2 -> 2
But I don't know the context, so it can be wrong
boiled goose
boiled goose13mo ago
it seems to be like a margin?
electronic heartbreak.
no,. i need to build sudokus, and I need to build a samurai sudoku too but a samurai is very different compared to a regular one
M B V R K
M B V R K13mo ago
It depends on your needs, but in general the first advice is use Constants
Accord
Accord13mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.
Want results from more Discord servers?
Add your server
More Posts